﻿/*TESTE PARA MODAL*/
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal-content {
    max-width: 100%;
    object-fit: contain;
}

.close {
    position: fixed;
    top: 10px;
    right: 25px;
    color: #000000 !important;
    font-size: 35px;
    font-weight: bold;
    z-index: 2;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.disable-dbl-tap-zoom {
    touch-action: manipulation;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery img {
    width: 100%;
    cursor: pointer;
}